home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / sbin / kernelversion < prev    next >
Text File  |  2006-01-09  |  451b  |  24 lines

  1. #!/bin/sh
  2. # Small script to get the kernel version
  3. # Made by W.Akkerman <wichert@liacs.nl> for the Debian modules package.
  4.  
  5. # Helper functions from Bruce Perens to replace cut
  6.  
  7. pick1() {
  8.     eval 'echo $'"$pick_index"
  9. }
  10. pick() {
  11.     OLD_IFS=IFS
  12.     local delimiter="$1"
  13.     shift
  14.     pick_index="$1"
  15.     shift
  16.     IFS=" "$delimiter
  17.     pick1 $*
  18.     IFS=$OLD_IFS
  19.     unset pick_index
  20. }
  21.  
  22. version=$(uname -r)
  23. echo `pick . 1 $version`.`pick . 2 $version`
  24.